home *** CD-ROM | disk | FTP | other *** search
/ 10,000 Designer Photos / 10,000 designer photos.iso / menu.dxr / 00012_Go to Net Page.ls < prev    next >
Encoding:
Text File  |  1999-04-14  |  1.2 KB  |  37 lines

  1. property whichevent, WhichURL
  2.  
  3. on initGotoNetPage me
  4.   init(me)
  5. end
  6.  
  7. on mouseUp me
  8.   if whichevent = #mouseUp then
  9.     init(me)
  10.   end if
  11. end
  12.  
  13. on prepareFrame me
  14.   if whichevent = #prepareFrame then
  15.     init(me)
  16.   end if
  17. end
  18.  
  19. on exitFrame me
  20.   if whichevent = #exitFrame then
  21.     init(me)
  22.   end if
  23. end
  24.  
  25. on init me
  26.   gotoNetPage(me.WhichURL)
  27. end
  28.  
  29. on getPropertyDescriptionList
  30.   p_list = [#WhichURL: [#comment: "Destination URL:", #format: #string, #default: "http://www.macromedia.com                  "], #whichevent: [#comment: "Initializing Event:", #format: #symbol, #range: [#mouseUp, #prepareFrame, #exitFrame, #initGotoNetPage], #default: #mouseUp]]
  31.   return p_list
  32. end
  33.  
  34. on getBehaviorDescription
  35.   return "Loads the designated HTML Page when the specified event occurs.  When called from a Shockwave movie, this behavior replaces the current page displayed in the web browser.  When called from a projector or in authoring mode, it opens a browser to display the requested page." & RETURN & "PARAMETERS:" & RETURN & "ΓÇó Destination URL - Enter the complete URL of the destination page. Include http://." & RETURN & "ΓÇó Initializing Event - Specify the event that triggers the behavior."
  36. end
  37.